home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh
-
- set RibDir = ~ribbons
-
- if( $#argv != 2 ) then
- goto Usage
- endif
-
- if( ! -e $1 ) then
- echo " SS file $1 does not exist. "
- goto Usage
- endif
-
- if( -e $2 ) then
- echo " file $2 already exists. "
- goto Usage
- endif
-
- awk -f $RibDir/fithx/ss-hx.awk < $1 > $2
-
- exit
-
-
- Usage:
- echo " usage: ss-hx-range mol.ss hx.range"
-